Read Points

The function rm.ReadPoint.setReadPointStatus allows enabling or disabling the read point (Antenna) for the specified antenna ID.

// set read point (antenna 1) enable

rm.ReadPoint.setReadPointStatus((short)1, READPOINT_STATUS.ENABLE);

To know the current status of the specified read point (Antenna), the method rm.ReadPoint.getReadPointStatus can be called.

// get read point (antenna 1) status

short antennaID = 1;

READPOINT_STATUS readPointStatus = rm.ReadPoint.getReadPointStatus(antennaID);